5 // Created by Mac-arena the Bored Zo on Sat May 08 2004.
8 #import <Foundation/Foundation.h>
9 #import "BZProgressTracker.h"
11 #define PROGRESS_VIEW_GUTTER 8.0
12 #define PROGRESS_VIEW_BAR_HEIGHT 14.0
13 #define PROGRESS_VIEW_FIELD_HEIGHT 14.0
15 @interface BZProgressView
: NSView
{
16 id
<BZProgressTracker
> myTracker
;
18 IBOutlet NSTextField
*statusField
;
19 IBOutlet NSProgressIndicator
*progressBar
;
22 - initWithTracker
:(id
<BZProgressTracker
>)tracker inFrame
:(NSRect
)frame
;
24 - (void)setTracker
:(id
<BZProgressTracker
>)tracker
;
25 - (id
<BZProgressTracker
>)tracker
;
28 - (void)updateWithTracker
:(id
<BZProgressTracker
>)tracker
;